body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0f24, #1c0058, #002c5f);
    font-family: "Segoe UI", sans-serif;
    color: #e5f2ff;
}

/* Contenedor centrado */
#container {
    text-align: center;
}

/* Título Futurista */
#titulo {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 5px;
    cursor: pointer;
    transition: 0.3s;
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff, 0 0 20px #00bcd4;
}

#titulo:hover {
    text-shadow: 0 0 15px #00eaff, 0 0 30px #00eaff;
}

/* Subtítulo */
#title1 {
    color: #b4e0ff;
    font-weight: 300;
    text-shadow: 0 0 6px rgba(0, 242, 255, 0.35);
}

/* Texto desplegable */
#significado {
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.4s;
    margin-top: 20px;
    font-size: 1.3rem;
    color: #cbeaff;
    text-shadow: 0 0 6px rgba(0, 247, 255, 0.25);
}

/* Hover del título que muestra el texto */
#titulo:hover + #significado {
    opacity: 1;
    transform: translateY(0);
}

button {
    margin-top: 35px;
    padding: 12px 25px;
    background: #00eaff;
    border: none;
    color: #001a23;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px #00eaff, 0 0 20px #0099aa;
    animation: glow 2s infinite alternate;  /* Animación añadida */
}

button:hover {
    background-color: #00fbff;
    box-shadow: 0 0 15px #00faff, 0 0 30px #00eaff;
}

/* Animación de glow pulsante */
@keyframes glow {
    0% {
        box-shadow: 0 0 10px #00eaff, 0 0 20px #0099aa;
    }
    50% {
        box-shadow: 0 0 20px #00eaff, 0 0 40px #00b7ff;
    }
    100% {
        box-shadow: 0 0 10px #00eaff, 0 0 20px #0099aa;
    }
}

/* Auto centrado */
.car-container {
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    position: relative;
}

/* Auto con efecto neón */
.car {
    width: 300px;
    position: relative;
    left: 5px;
    animation: park 2.5s ease-out forwards;
    filter: drop-shadow(0 0 10px #00eaff) drop-shadow(0 0 20px #00b7ff);
}

/* Animación */
@keyframes park {
    0% {
        transform: translateX(-300px);
        opacity: 0;
        filter: drop-shadow(0 0 0px #00eaff);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
        filter: drop-shadow(0 0 10px #00eaff) drop-shadow(0 0 20px #00b7ff);
    }
}
